home *** CD-ROM | disk | FTP | other *** search
/ Univers Mac Interactif 42 / Univers Mac Interactif - Issue 42.iso / >interactif / Démos Voyager / PAWS.DIR / 00031_Script_31 < prev    next >
Text File  |  1994-10-18  |  546b  |  35 lines

  1. on startmovie
  2.   unloadcast
  3.   cursor 200
  4. end
  5.  
  6. on enterframe
  7.   cursor 200
  8. end
  9.  
  10. on waitQT chan
  11.   if the MovieRate of sprite chan = 1 then go the frame
  12. end
  13.  
  14. on waitSound chan
  15.   if soundbusy(chan) then go the frame
  16. end
  17.  
  18. on QTvolume chan, theLevel
  19.   set the volume of sprite chan to theLevel
  20. end
  21.  
  22. on waiting theTicks
  23.   --must be preceded by startTimer
  24.   if theTicks >= the timer then go the frame
  25. end
  26.  
  27. on KeyDown
  28.   global autoplaying
  29.   put 0 into autoplaying
  30.   sound stop 1
  31.   sound stop 2
  32.   unloadcast
  33.   play done
  34. end
  35.